# Slack Notification Example using Webhook
import requests

msg = {
  "text": "SCC detected critical IAM privilege escalation. Approve automated role revocation?",
  "attachments": [
    {"text": "Approve or escalate via SOAR UI"}
  ]
}
requests.post('https://hooks.slack.com/services/TOKEN', json=msg)
